home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #1 / Amiga Plus 1995 #1.iso / fish-disketten / fish_691-700 / d695 / icalc / docs / history < prev    next >
Text File  |  1994-12-13  |  7KB  |  206 lines

  1. =============================================================================
  2.  
  3.     icalc - a complex-number expression parser
  4.  
  5.     by Martin W Scott
  6.  
  7. =============================================================================
  8.  
  9.     Revision History,
  10.     and Things To Do.
  11.  
  12. =============================================================================
  13.  
  14.     To Add
  15.     ------
  16.  
  17. PROBLEM    - function, f say, defined initially, then some other fn g
  18.       defined using f. f is redefined, incorrectly at first, thereby
  19.       deleting it from sym-table, until defined correctly. But
  20.       pointers in g now point to nothing...
  21.       This indicates need for reference count within symbols...
  22.  
  23.     - break, continue constructs.
  24.  
  25.     - print function which takes strings and format values.
  26.  
  27.     - error construct. Very similar to print...
  28.  
  29.  
  30.     Version 2.0
  31.     -----------
  32.  
  33.     - new and revised scripts - see documents for details.
  34.  
  35.     - writevars "file" writes all variables and arrays to specified
  36.       file in such a way that it can subsequently be read by a 'read'
  37.       command or as an argument to icalc.
  38.  
  39.     - exec "str" command added, passes string to system()
  40.       ie. runs command specified in str. eg. exec 'run dme'
  41.       Also, cd "str" and pwd commands added.
  42.  
  43.     - local vars available for functions via local statement.
  44.  
  45.     - 1d-arrays added - see docs for details.
  46.  
  47.     - clear <SYM> where sym is function or variable (or array)
  48.       frees all memory, deletes entry in table. Use with care, doesn't
  49.       check if SYM is referred to elsewhere.
  50.  
  51.     - startup-file optionally specified in env-var ICALCINIT.
  52.  
  53.     - read <name> command, so you can read files from other files
  54.       (like #include) and interactively. Makes writing and debugging
  55.       of compilcated functions much easier.
  56.  
  57.     - Functions can take expressions as parameters, ie. parameters need
  58.       not be evaluated on calling, but only on reference; this can be
  59.       a powerful tool in function definition - see docs.
  60.  
  61.     - More freedom about putting new-lines in expressions to aid clarity.
  62.       See docs for details. Still not free-form though, because of the
  63.       interactive nature of icalc.
  64.  
  65.     - if-then and if-then-else constructs added.
  66.  
  67.     - while-do and repeat-until constructs added - see docs for details.
  68.       To facilitate infinite loops (which would probably print() values),
  69.       the constants TRUE and FALSE have been added. Also added INFINITY
  70.       constant, which represents the largest possible value that can be
  71.       used.
  72.  
  73.     - [internal: changed over to Berkeley Yacc from Bison, because
  74.        the latter didn't seem to understand %nonassoc operator type.]
  75.  
  76.     - [Bugette: a = 3 && b = 4 is valid - parses as a = (3 && (b = 4))
  77.        instead (I would have thought) as a = (3 && 4) = b (ie. nonesense).
  78.        Something wrong with precedence of right-to-left ops in Bison/Yacc?
  79.        Or a grammar that just can't be dealt with by Bison/Yacc?]
  80.  
  81.     - [Internal: binary ops have node set to call-function - quicker than
  82.        case lookup in eval_tree().]
  83.  
  84.     - Exponentiation operator ^ now sensitive to operands, ie. doesn't
  85.       just use complex-number formula, but chooses method depending on
  86.       operands. Thus, realno^realno = realno + 0i. Quicker in most
  87.       cases now.
  88.  
  89.     - BUG FIX: files are now closed upon being read, rather than at
  90.       program termination.
  91.  
  92.     - BUG FIX: can now assign to parameters in function definition (for
  93.       what it's worth...).
  94.  
  95.     - BUG FIX: all arguments to functions are now evaluated from left
  96.       to right; previously, this was the case for builtin functions,
  97.       but not user-defined functions.
  98.  
  99.     - Recursive functions may now be written, but program stack grows
  100.       quickly - I'm working on reducing it.
  101.  
  102.     - Addition of ternary operator ?: with usage as in C (see docs).
  103.  
  104.     - Addition of +=, *= etc. operators.
  105.  
  106.     - Addition of relational operators > , >=, <, <=, ==, != and logical
  107.       operators &&, ||, ! (negation). && and || use short-circuit
  108.       evaluation, ala C.
  109.  
  110.     - Abort trap now set, so you can ^C out of long calculations :-)
  111.       Doesn't slow things down too much.
  112.  
  113.  
  114.     Version 1.1a
  115.     ------------
  116.  
  117.     - BUG FIX: The inverse trigonometric functions asin, acos, atan now
  118.       return values in the conventionally regarded PVR's. They should
  119.       also work all the time now (unlike in the last release). 
  120.  
  121.     - BUG FIX: Fixed major bug whereby sqrt(z) didn't return values in
  122.       the correct quadrant for PVR of (-PI,PI]. Not only did this affect
  123.       the sqrt function, but also all functions defined using sqrt
  124.       (internally and in scripts), including inverse trig. functions.
  125.  
  126.     - Addition of max and min functions, which take a variable number
  127.       of arguments and return respectively the value of the  maximum
  128.       or minimum REAL part encountered.
  129.  
  130.     - Addition of a time() builtin. This allows timings of operations
  131.       to be made. time(t) = current time - t.
  132.  
  133.     - Addition of sgn() builtin, which returns the sign (-1,0,1) of the
  134.       REAL part of its argument.
  135.  
  136.     - Modified definitions of int, floor, ceil to only act on REAL part of
  137.       their arguments, so to get floor of imag. part, say floor(Im(z)).
  138.  
  139.     - Revised icalc.init file, with more definitions.
  140.  
  141.     - BUG FIX: Corrected stupid mistake in definition of polar(r,theta)
  142.       function in icalc.init.
  143.  
  144.  
  145.  
  146.     Version 1.1
  147.     -----------
  148.  
  149.     - Example script files modified. Now provided are:
  150.         icalc.init, which has many useful functions (startup-file);
  151.         trig.icalc, which contains less-used trig functions;
  152.         stat.icalc, one-variable statistical analysis.
  153.       You are strongly recommended to look at these for tips on how
  154.       best to use icalc.
  155.  
  156.     - On startup, icalc will now read the file 's:icalc.init' if it
  157.       exists.
  158.  
  159.     - Special function multi() added, which evaluates all its arguments,
  160.       returning the last one as its value. See docs and example scripts
  161.       for applications. Also added is print() builtin, for use
  162.       with multi().
  163.  
  164.     - Special functions Sum(), Prod(), every() and vevery() now added.
  165.       The repeat construct has therefore been removed. (It was only
  166.       in there until I got around to adding this type of facility).
  167.  
  168.     - Expressions and function definitions may now be continued on
  169.       the next line by use of a backslash '\'.
  170.  
  171.     - Identifiers may begin with and contain underscores (and, as a
  172.       side-effect of the implementation, be composed entirely of
  173.       underscores).
  174.  
  175.     - Multi-parameter functions now added.
  176.  
  177.     - You can now declare functions that take no parameters, eg.
  178.         func total() = sum1 + sum2
  179.  
  180.     - Listing of user functions improved: now shows parameter list;
  181.       However, I don't think it's worth writing out whole definition.
  182.  
  183.     - Method of setting precision has changed: now use function
  184.       prec(digits), which returns ans (last computed result). Initially
  185.       set to 8.
  186.  
  187.     - Added function int(z), which returns the real and imaginary parts
  188.       of z rounded to nearest integers; 0.5 rounds up.
  189.  
  190.     - Added functions ceil(z) and floor(z), which operate separately
  191.       on the real and imaginary parts of their argument, in a similar
  192.       manner to int(z).
  193.  
  194.     - Now has a prompt to avoid confusion.
  195.  
  196.     - [Real-valued functions are no longer computed internally as such.]
  197.  
  198.     - Removed debugging code accidentally left in with version 1.0.
  199.  
  200.  
  201.  
  202.     Version 1.0
  203.     -----------
  204.  
  205.     - Initial release.
  206.